home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / iv.dir / 00044_save button callback.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  544 b   |  22 lines

  1. on mouseDown
  2.   global givState
  3.   set clik to the clickOn
  4.   if listp(the editList of givState) then
  5.     if count(the editList of givState) < 1 then
  6.       exit
  7.     end if
  8.   else
  9.     set the editList of givState to []
  10.     exit
  11.   end if
  12.   set the castNum of sprite clik to the number of cast "save button down"
  13.   updateStage()
  14.   repeat while the stillDown
  15.     nothing()
  16.   end repeat
  17.   if the mouseCast = the number of cast "save button down" then
  18.     EditListSave()
  19.   end if
  20.   set the castNum of sprite clik to the number of cast "save button"
  21. end
  22.